home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1993-11-04 | 920 b | 44 lines |
- (***********************************************************************
-
- :Program. PlotZeichnen.def
- :Author. Stefan Köhle
- :Address. Erhardtstr. 10
- W-7033 Herrenberg
- :Phone. 07032/5146
- :shortcut.
- :Version. 1.0
- :Date. 15.11.92
- :Copyright. nix
- :Language. Modula-II.
- :Translator. M2Amiga 4.107d
- :Imports. PlotInit
- :UpDate.
- :Contents.
- :Remark.
-
- **********************************************************************)
-
- DEFINITION MODULE PlotZeichnen;
-
-
- FROM PlotInit IMPORT PlotBasePtr ;
-
-
-
- PROCEDURE RasterZeichnen(VAR Pb: PlotBasePtr) ;
-
- PROCEDURE RestRaster(VAR Pb: PlotBasePtr) ;
-
- PROCEDURE BeschriftungZeichnen(VAR Pb: PlotBasePtr) ;
-
- PROCEDURE ClearBitMap(VAR Pb: PlotBasePtr) ;
-
- PROCEDURE FunktionReinSchreiben(VAR Pb: PlotBasePtr; clear: BOOLEAN) ;
-
- PROCEDURE HelpFenster(VAR Pb: PlotBasePtr): BOOLEAN ;
-
-
- END PlotZeichnen.def
-
-
-